-
Notifications
You must be signed in to change notification settings - Fork 0
deps(deps): update all non-major dependencies #426
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ @@ Coverage Diff @@
## main #426 +/- ##
=======================================
Coverage 35.32% 35.32%
=======================================
Files 33 33
Lines 2701 2701
=======================================
Hits 954 954
Misses 1647 1647
Partials 100 100 Continue to review full report in Codecov by Sentry.
|
3eddf86
to
1f7047e
Compare
1f7047e
to
7248fa6
Compare
7248fa6
to
0dd139b
Compare
66b04b1
to
d73378c
Compare
d73378c
to
4d108a3
Compare
4d108a3
to
422f186
Compare
0431a16
to
ea5fd8a
Compare
ea5fd8a
to
4d41b9e
Compare
4d41b9e
to
4bfe52c
Compare
4bfe52c
to
3014f80
Compare
bb95dad
to
3f04c35
Compare
3f04c35
to
ca49bdd
Compare
ac551c2
to
ee4bf6f
Compare
b9c82c3
to
119636a
Compare
119636a
to
2f6975d
Compare
2f6975d
to
015387a
Compare
b57ff72
to
8150660
Compare
8150660
to
1c2cc19
Compare
8a5d46f
to
22a7eee
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22a7eee
to
e213f32
Compare
This PR contains the following updates:
v1.4.2
->v1.4.3
v2.22.0
->v2.25.1
v1.36.1
->v1.38.1
v0.1.14
->v0.1.16
v0.46.2
->v0.52.0
v0.31.4
->v0.33.4
v0.31.4
->v0.33.4
v0.31.4
->v0.33.4
v1.9.0
->v1.11.0
v0.19.3
->v0.21.0
Release Notes
go-logr/logr (github.com/go-logr/logr)
v1.4.3
Compare Source
Minor release.
What's Changed
New Contributors
Full Changelog: go-logr/logr@v1.4.2...v1.4.3
onsi/ginkgo (github.com/onsi/ginkgo/v2)
v2.25.1
Compare Source
2.25.1
Fixes
10866d3
]2e42cff
]v2.25.0
Compare Source
2.25.0
AroundNode
This release introduces a new decorator to support more complex spec setup usecases.
AroundNode
registers a function that runs before each individual node. This is considered a more advanced decorator.Please read the docs for more information and some examples.
Allowed signatures:
AroundNode(func())
-func
will be called before the node is run.AroundNode(func(ctx context.Context) context.Context)
-func
can wrap the passed in context and return a new one which will be passed on to the node.AroundNode(func(ctx context.Context, body func(ctx context.Context)))
-ctx
is the context for the node andbody
is a function that must be called to run the node. This gives you complete control over what runs before and after the node.Multiple
AroundNode
decorators can be applied to a single node and they will run in the order they are applied.Unlike setup nodes like
BeforeEach
andDeferCleanup
,AroundNode
is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can callruntime.LockOSThread()
in theAroundNode
to ensure that the node runs on a single thread).Since
AroundNode
allows you to modify the context you can also useAroundNode
to implement shared setup that attaches values to the context.If applied to a container,
AroundNode
will run before every node in the container. Including setup nodes likeBeforeEach
andDeferCleanup
.AroundNode
can also be applied toRunSpecs
to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.v2.24.0
Compare Source
2.24.0
Features
Specs can now be decorated with (e.g.)
SemVerConstraint("2.1.0")
andginkgo --sem-ver-filter="2.1.1"
will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @Icarus9913 for the PR.Fixes
3f5d379
]. fixes #1582Maintenance
Numerous dependency bumps and documentation fixes
v2.23.4
Compare Source
2.23.4
Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with
-p
in a linux container. Thanks to @emirot for the fix!Features
2b9c428
]Fixes
1f59d07
]Maintenance
2d134d5
]v2.23.3
Compare Source
2.23.3
Fixes
-
as a standalone argument [cfcc1a5
]feaf292
]88e2282
]v2.23.2
Compare Source
2.23.2
🎉🎉🎉
At long last, some long-standing performance gaps between
ginkgo
andgo test
have been resolved!Ginkgo operates by running
go test -c
to generate test binaries, and then running those binaries. It turns out that the compilation step ofgo test -c
is slower thango test
's compilation step becausego test
strips out debug symbols (ldflags=-w
) whereasgo test -c
does not.Ginkgo now passes the appropriate
ldflags
togo test -c
when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and whenginkgo build
is called explicitly.This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.
v2.23.1
Compare Source
2.23.1
🚨 For users on MacOS 🚨
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
Fixes
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
a0e52ff
]b799d8d
]This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
v2.23.0
Compare Source
2.23.0
Ginkgo 2.23.0 adds a handful of methods to
GinkgoT()
to make it compatible with thetesting.TB
interface in Go 1.24.GinkgoT().Context()
, in particular, is a useful shorthand for generating a new context that will clean itself up in aDeferCleanup()
. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.Features
37a511b
]Fixes
7556a86
]4df06c6
]Maintenance
cbcf39a
]9b261ff
]00f19c8
]e98a4df
]60cc4e2
]fea6f2d
]31d7813
]fc3bbd6
]aee0d56
]809a710
]v2.22.2
Compare Source
What's Changed
Full Changelog: onsi/ginkgo@v2.22.1...v2.22.2
v2.22.1
Compare Source
2.22.1
Fixes
Fix CSV encoding
aab3da6
]c09df39
]96a80fc
]43dad69
]Maintenance
c88c634
]4df44bf
]onsi/gomega (github.com/onsi/gomega)
v1.38.1
Compare Source
1.38.1
Fixes
Numerous minor fixes and dependency bumps
v1.38.0
Compare Source
1.38.0
Features
4ee7ed0
]Fixes
36bbf72
]Maintenance
529d408
]acd1f55
]bae65a0
]8dda91f
]212d812
]59bd7f9
]328c729
]9a798a1
]04a72c6
]v1.37.0
Compare Source
1.37.0
Features
5666f98
]v1.36.3
Compare Source
1.36.3
Maintenance
adb8b49
]interface{}
withany
[7613216
]9fe5259
]a0e85b9
]604a8b1
]36fbc84
]ced70d7
]c8b4a07
]06431b9
]b55a92d
]a1d518b
]v1.36.2
Compare Source
Maintenance
validator-labs/validator (github.com/validator-labs/validator)
v0.1.16
Compare Source
Bug Fixes
Other
Dependency Updates
1829a12
(#448) (fb42aea)4a55095
(#454) (3e1fe92)b2144cd
(#458) (0b04ec9)v0.1.15
Compare Source
Other
Dependency Updates
5e4aaa9
(#450) (4a8bc76)vmware/govmomi (github.com/vmware/govmomi)
v0.52.0
Compare Source
Release v0.52.0
🐞 Fix
5c16d3f
] vcsim: Avoid panic in QueryAvailablePerfMetric if VM has no Datastore💫 API Changes
2278e0e
] Update folder.PlaceVMsXCluster to return available candidate networks28eeab9
] fix comments and doc links7a3647c
] fix action parameters8ee9995
] update drafts bindings37dd0c8
] bindings for esx/settings/clusters/cluster/configuration/drafts7074655
] Placement policy WSDL names changed55501e2
] add bindings for recent tasks and schema3230765
] add bindings for esx/settings/cluster/configuration74eea10
] add bindings for esx/settings/cluster/enablement/configuration/transitione61ad35
] Update folder.PlaceVMsXCluster to filter clusters based on candidate networks availability - Add GoVmomi Bindings to CandidateNetworks - Made changes suggested by Shengjie8784335
] Add "lsilogicsas" alias for "lsilogic-sas" in CreateSCSIController💫
govc
(CLI)0b0e0cc
] Add vmclass configSpec options💫
vcsim
(Simulator)3efce10
] add SearchIndex.FindAllByUuid() support5a50d40
] Fault injection2fed341
] CreateVm should allow existing nvram files38a8488
] Resolve NSX OpaqueBacking to the DistributedVirtualPortgroup25ce2a1
] Avoid panic if VM NIC is removed after CustomizeVM📃 Documentation
d0143b1
] updateCHANGELOG.md
(#3839) (#3839)🧹 Chore
e53c30d
] Update version.go for v0.52.0📖 Commits
e53c30d
] chore: Update version.go for v0.52.0d0143b1
] docs: updateCHANGELOG.md
(#3839) (#3839)edf81ad
] build(deps): bump golang.org/x/text from 0.26.0 to 0.28.0 (#3835) (#3835)521695d
] build(deps): bump goreleaser/goreleaser-action from 6.3.0 to 6.4.0 (#3838) (#3838)161b964
] build(deps): bump github.com/go-viper/mapstructure/v2 (#3811) (#3811)90a7f76
] build(deps): bump nokogiri from 1.18.8 to 1.18.9 in /gen (#3822) (#3822)57127ba
] build(deps): bump test-unit from 3.6.8 to 3.7.0 in /gen (#3817) (#3817)0e836f2
] build(deps): bump actions/cache from 4.2.3 to 4.2.4 (#3834) (#3834)aa32ef3
] vcsim : Remove the single VM limitation for PlaceVmsXCluster API2278e0e
] api: Update folder.PlaceVMsXCluster to return available candidate networks74528cf
] Add option to GetVirtualDiskInfoByUUID for choosing exclude snapshot disks when calculating virtualdisk sizedebe7c7
] update json tags and add tests for syncvolume api245af17
] binding for CnsKubernetesQueryFilterb74b010
] Implement bindings for CNS Unregister Volume Created new method called CnsUnregisterVolume Created CnsUnregisterVolume, CnsUnregisterVolumeRequestType and CnsUnregisterVolumeResponse types Created UnregisterVolume method on CNS Client Created TestUnregisterVolume function to test the changes28eeab9
] api: fix comments and doc linksf12361c
] Add tests for types of meta fault (#3824) (#3824)7a3647c
] api: fix action parameters8ee9995
] api: update drafts bindings37dd0c8
] api: bindings for esx/settings/clusters/cluster/configuration/drafts7074655
] api: Placement policy WSDL names changed55501e2
] api: add bindings for recent tasks and schema3230765
] api: add bindings for esx/settings/cluster/configuration74eea10
] api: add bindings for esx/settings/cluster/enablement/configuration/transition3efce10
] vcsim: add SearchIndex.FindAllByUuid() supporte48f1ff
] Add CnsSyncVolume API bindingsd25f318
] Update govc/USAGE.md858de8d
] Introduce Govmomi bindings to support VM placement policiesb67bf1a
] Added new simulator test TestPlaceVmsXClusterCreateAndPowerOnWithCandidateNetworks4a142ef
] Made changes suggested in review - removed go.mod915ef1e
] Fix binding generation by bumping Ruby version6248951
] Updated folder.place usage9822e17
] Add shared disk parameters to Cns AttachDetach Spece61ad35
] api: Update folder.PlaceVMsXCluster to filter clusters based on candidate networks availability - Add GoVmomi Bindings to CandidateNetworks - Made changes suggested by Shengjie0c58602
] Fix the quotation in the copyright header281c86f
] update CnsVolumeCreateSpec and CnsVolumeOperationResult109a53a
] Add SPBM internal types and methods related to K8s compliant names changescbbe8d2
] handle vim25:NotSupported returned with CnsFault24f4996
] skip CNS transaction tests when env CNS_RUN_TRANSACTION_TESTS is not set870f1e7
] update CnsVolumeCreateSpec and CnsSnapshotCreateSpec for Transaction Support. add new fault CnsVolumeAlreadyExistsFault0e4a0fa
] Added govmomi binding changes for SPBM API changes for reserve K8s compliant name feature5a50d40
] vcsim: Fault injection2fed341
] vcsim: CreateVm should allow existing nvram files8febefc
] Add linkedClone creation support for CNS volumes8784335
] api: Add "lsilogicsas" alias for "lsilogic-sas" in CreateSCSIController38a8488
] vcsim: Resolve NSX OpaqueBacking to the DistributedVirtualPortgroup0b0e0cc
] govc: Add vmclass configSpec options25ce2a1
] vcsim: Avoid panic if VM NIC is removed after CustomizeVM5c16d3f
] fix: vcsim: Avoid panic in QueryAvailablePerfMetric if VM has no Datastorev0.51.0
Compare Source
🐞 Fix
e61afb1
] vcsim: Avoid possible race in SessionManager.Logout💫 API Changes
2250eba
] Add option to use a filter function as value of property.Match (#3785)a534f39
] Add object.VirtualMachine.CreateSnapshotEx method761efe9
] Add object.VirtualMachine.PromoteDisks methoda09e0ec
] Extend vmdk.Info to include Descriptor💫
govc
(CLI)59cb29b
] Add vm.disk.promote commandeaaeb84
] Add import.vmdk '-i' flag to output vmdk info only💫
vcsim
(Simulator)30750a6
] Add CreateSnapshotEx for simulator6af11fc
] Use OptionManager to configure session timeout duration40a596c
] Add VirtualMachine.PromoteDisks_Task method22c7be3
] Use vmdk.Descriptor for vmdk file metadata54f2b70
] Avoid use of sha1 for stable UUIDs (OIDs) (#3766)🧹 Chore
5019694
] Update version.go for v0.51.0a5f933d
] update container images9002dc9
] update.goreleaser.yml
to v2Use OptionManager to configure session timeout duration [
6af11fc
]:var simulator.SessionIdleTimeout has been removed.
Use sim25.SetSessionTimeout instead.
📖 Commits
5019694
] chore: Update version.go for v0.51.02250eba
] api: Add option to use a filter function as value of property.Match (#3785)30750a6
] vcsim: Add CreateSnapshotEx for simulatora534f39
] api: Add object.VirtualMachine.CreateSnapshotEx method6af11fc
] vcsim: Use OptionManager to configure session timeout duration2bcb4c3
] build(deps): bump actions/setup-go from 5.4.0 to 5.5.0bf0dfcb
] chore(deps): go mod tidyd41f29d
] build(deps): bump golang.org/x/text from 0.24.0 to 0.25.040a596c
] vcsim: Add VirtualMachine.PromoteDisks_Task method59cb29b
] govc: Add vm.disk.promote command761efe9
] api: Add object.VirtualMachine.PromoteDisks method22c7be3
] vcsim: Use vmdk.Descriptor for vmdk file metadata98ad4c1
] build(deps): bump mxschmitt/action-tmate from 3.21 to 3.22eaaeb84
] govc: Add import.vmdk '-i' flag to output vmdk info onlya09e0ec
] api: Extend vmdk.Info to include Descriptore61afb1
] fix: vcsim: Avoid possible race in SessionManager.Logout0cbdbf0
] emacs: Add datastore.ls '-a' flag when prefix arg is givena5f933d
] chore: update container images54f2b70
] vcsim: Avoid use of sha1 for stable UUIDs (OIDs) (#3766)49ec77a
] build(deps): bump test-unit from 3.6.7 to 3.6.8 in /genecbccf5
] build(deps): bump mxschmitt/action-tmate from 3.20 to 3.21b1a3a20
] build(deps): bump nokogiri in /gen in the bundler group9002dc9
] chore: update.goreleaser.yml
to v2v0.50.0
Compare Source
🐞 Fix
28b39ed
] vcsim -load Datastore summary.url property (#3705)5833c6c
] vcsim: fix PropertyFilter/Collector memory leak💫 API Changes
7a02bd9
] Rewrite lookup service URLs on DNS erroreb53c23
] add PodVMOverheadInfo type and HostCapability fieldaf92671
] usecrypto/rand
for nonce generation036a4d1
] useParseInt
and addint32
bounds checkc99e28c
] Add optional CategoryID,TagID fields for category and tag creation (#3706)💫
govc
(CLI)ab3050b
] Support Datastore Cluster in import.ova command (#1265)75f2762
] Add import.ova -net flag (#3679)96ad8ab
] Add -lease option to import/export commandsaa5a378
] Support -p and -s in with single task.set088003e
] Add vm.policy.ls command (#3727)278ebc9
] Support snapshot.exporta8997d5
] fix integer type conversionb40a2ac
] fix integer type conversion forguest.chown
d2b4cc7
] Add '-id' option for tags.category and tags create commands💫
vcsim
(Simulator)af3bc8b
] Populate guest.ipStack property for container backed VMs282553e
] Add minimal json-rpc support89942b7
] Use the simulator's URL.Host in NFC lease URLs3040a0a
] support multiple VirtualSystemType in OvfManager.CreateImportSpecad31c4f
] fix integer type conversion87e9b3e
] Add vapi support for CategoryID and TagID fields📃 Documentation
4e6a5f8
] remove legacy docs links8a592e2
] update kb urls795b564
] Update various API reference links🧹 Chore
6ed9b22
] Update version.go for v0.50.0d1eb5e2
] vim25/xml: sync with Go 1.24 encoding/xmle74e67e
] gofmt -w -r 'interface{} -> any' .25e74a3
] update copyrighte966b83
] updatevmware/govc
andvmware/vcsim
dockerfilesa628d18
] update codeql workflow📖 Commits
6ed9b22
] chore: Update version.go for v0.50.0554b6d0
] chore(gh): update release1891935
] build(deps): bump mxschmitt/action-tmate from 3.19 to 3.20af3bc8b
] vcsim: Populate guest.ipStack property for container backed VMsf02f568
] Handle the duration field as string7a02bd9
] api: Rewrite lookup service URLs on DNS error282553e
] vcsim: Add minimal json-rpc support89942b7
] vcsim: Use the simulator's URL.Host in NFC lease URLsab3050b
] govc: Support Datastore Cluster in import.ova command (#1265)75f2762
] govc: Add import.ova -net flag (#3679)28b39ed
] fix: vcsim -load Datastore summary.url property (#3705)96ad8ab
] govc: Add -lease option to import/export commandsaa5a378
] govc: Support -p and -s in with single task.set4e6a5f8
] docs: remove legacy docs links8a592e2
] docs: update kb urlsd52c1f8
] chore(deps): go mod tidy89c260b
] build(deps): bump golang.org/x/text from 0.23.0 to 0.24.0088003e
] govc: Add vm.policy.ls command (#3727)795b564
] docs: Update various API reference links3040a0a
] vcsim: support multiple VirtualSystemType in OvfManager.CreateImportSpec278ebc9
] govc: Support snapshot.exportd1eb5e2
] chore: vim25/xml: sync with Go 1.24 encoding/xml5833c6c
] fix: vcsim: fix PropertyFilter/Collector memory leakb15bf06
] build(deps): bump goreleaser/goreleaser-action from 6.2.1 to 6.3.0eb53c23
] api: add PodVMOverheadInfo type and HostCapability fielda790f8a
] refactor: header checke74e67e
] chore: gofmt -w -r 'interface{} -> any' .25e74a3
] chore: update copyrightad31c4f
] vcsim: fix integer type conversiond1cb2a3
] chore(deps): update bundler to v2 for dependabot8e40bd3
] build(deps): bump actions/cache from 4.2.2 to 4.2.30a2a3b1
] build(deps): bump actions/upload-artifact from 4.6.1 to 4.6.2f8d2b7f
] build(deps): bump actions/setup-go from 5.3.0 to 5.4.0e966b83
] chore: updatevmware/govc
andvmware/vcsim
dockerfilesaf92671
] api: usecrypto/rand
for nonce generation036a4d1
] api: useParseInt
and addint32
bounds checka628d18
] chore: update codeql workflowa8997d5
] govc: fix integer type conversionb40a2ac
] govc: fix integer type conversion forguest.chown
5026416
] build(deps): bump actions/stale from 9.0.0 to 9.1.013746e8
] build(deps): bump actions/setup-go from 5.0.0 to 5.3.01d474f4
] chore(gh): update dependabot69643bd
] toolbox: fix codeql go/zipslip1996bca
] chore(gh): update release workflow9e95e5a
] chore(gh): update unit tests workflowf7ecbc9
] chore(gh): update build workflow701a951
] chore(gh): update linting workflow6260daa
] chore(gh): update govc tests workflowcb5e910
] chore(gh): update wip workflow67d10d5
] chore(gh): add lock workflow61147b6
] chore(gh): update stale workflow9edf6aa
] chore(gh): update docker workflow4cd16c7
] chore(gh): update greeting workflow14d73d6
] chore(gh): update codeql workflow649b490
] chore(gh): update toubuntu-latest
runner87e9b3e
] vcsim: Add vapi support for CategoryID and TagID fieldsd2b4cc7
] govc: Add '-id' option for tags.category and tags create commandsc99e28c
] api: Add optional CategoryID,TagID fields for category and tag creation (#3706)v0.49.0
Compare Source
🐞 Fix
f13754e
] vcsim: extend PropertyCollector lock to avoid potential races (#3697)67566aa
] Drop operationID soap header for unsupported endpoints💫
govc
(CLI)29fe42f
] add volume.rm -keep flag to retain backing disk55b7637
] add volume.extend command1b06c59
] add GPU commands8f7fbc3
] add session.login -jwt option (#3041)35b5564
] Rewrite kms.export URL to use the host we connected to vCenter with5899d79
] Add storage.policy.create '-e' option to enable encryption💫
vcsim
(Simulator)f16c46b
] add vsan Datastore supportcdeb3e4
] remove simulator.Map package variable4a0b946
] add query and metadata support for CNS Volume API🧹 Chore
bd808e8
] Update version.go for v0.49.03bf0935
] Use cns Task helpers in govc volume commandsremove simulator.Map package variable [
cdeb3e4
]:simulator.Map package variable has been removed
simulator.SpoofContext function has been renamed to NewContext
📖 Commits
bd808e8
] chore: Update version.go for v0.49.03b71869
] build(deps): bump golang.org/x/text from 0.22.0 to 0.23.03bf0935
] chore: Use cns Task helpers in govc volume commands29fe42f
] govc: add volume.rm -keep flag to retain backing disk55b7637
] govc: add volume.extend commandf16c46b
] vcsim: add vsan Datastore supportcdeb3e4
] vcsim: remove simulator.Map package variablef13754e
] fix: vcsim: extend PropertyCollector lock to avoid potential races (#3697)1b06c59
] govc: add GPU commands8f7fbc3
] govc: add session.login -jwt option ([#3041](https://rediConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.